home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection 1998 Fall: Game Toolkit / Disc.iso / SDKs / Apple Game Sprockets / SoundSprocket / SoundSprocketTest Sources / TS3TestAPI.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-26  |  845 b   |  43 lines  |  [TEXT/CWIE]

  1. /*
  2.  *    File:        TS3TestAPI.c
  3.  *
  4.  *    Copyright © 1996 Apple Computer, Inc.
  5.  */
  6.  
  7. #include "TS3TestAPI.h"
  8.  
  9.  
  10. /* =============================================================================
  11.  *        TestAPI_Init (external)
  12.  *
  13.  *    Initializes our thing.
  14.  * ========================================================================== */
  15. void TestAPI_Init(
  16.     void)
  17. {
  18. }
  19.  
  20.  
  21. /* =============================================================================
  22.  *        TestAPI_Exit (external)
  23.  *
  24.  *    Cleans up.
  25.  * ========================================================================== */
  26. void TestAPI_Exit(
  27.     void)
  28. {
  29. }
  30.  
  31.  
  32. /* =============================================================================
  33.  *        TestAPI_Execute (external)
  34.  *
  35.  *    Runs the API tests.
  36.  * ========================================================================== */
  37. void TestAPI_Execute(
  38.     void)
  39. {
  40. }
  41.  
  42.  
  43.